home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 1 / LSD Compendium Deluxe 1.iso / a / programming / misc / m2_part1.lha / modula / dice / dice.LHA / include / sys / time.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-04-24  |  148 b   |  15 lines

  1.  
  2. #ifndef _SYS_TIME_H
  3. #define _SYS_TIME_H
  4.  
  5. #include <time.h>
  6.  
  7. struct timeval {
  8.     unsigned long   tv_sec;
  9.     unsigned long   tv_usec;
  10. };
  11.  
  12. #endif
  13.  
  14.  
  15.